home *** CD-ROM | disk | FTP | other *** search
/ El Mac 8 / El Mac 8.iso / Shareware / Utilities / PowerReplace 4.5.5 / (Test) / Test SelfReplace / StripSpace < prev    next >
Encoding:
Text File  |  1996-02-24  |  235 b   |  14 lines  |  [TEXT/EREP]

  1. % strip space using pattern
  2. % Guoniu Han, 1996/2/20
  3.  
  4. %change tab to space, how type tab using pattern?
  5. "\t"        " "
  6.  
  7. %skip spaces in the begin and the end of lines
  8. '^ +'        ""
  9. ' +$'        ""
  10.  
  11. %change more two space to one space
  12. '  +'         " "
  13.  
  14. %end